home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / doorware / artil11.zip / RESET.BAT < prev    next >
DOS Batch File  |  1996-11-15  |  522b  |  30 lines

  1. @echo off
  2. cls
  3. echo                    ARTILLERY RESET BATCH FILE
  4. echo.
  5. echo This program will reset the Artillery Door Game, deleting all
  6. echo game files and logs.  Bulletin files are not deleted.
  7. echo.
  8. echo Sure you want to do this?
  9. echo.
  10. echo Press enter twice to proceed or CTRL-C to quit
  11. pause
  12. pause
  13.  
  14. cls
  15.  
  16. @echo off
  17. del game.dat
  18. del daily.dat
  19. del winner.dat
  20. del lastmnt.dat
  21. echo * Game files deleted.
  22.  
  23. @echo off
  24. del artilry.log
  25. echo * Log file deleted.
  26.  
  27. echo.
  28. echo * Game has been reset.
  29.  
  30.